42b13053d17db856e3703e6891a2ffd12ab58dcb,UbuntuLauncher/app/src/main/java/be/robinj/ubuntu/HomeActivity.java,HomeActivity,onResume,#,299

Before Change


			this.showLauncherService (false);

			if (this.apps != null)
				this.apps.addRunningApps (this.chameleonicBgColour);
		}
		catch (Exception ex)
		{

After Change



			if (this.apps != null)
			{
				SharedPreferences prefs = this.getSharedPreferences ("prefs", MODE_PRIVATE);

				if (prefs.getBoolean ("launcher_running_show", true))
					this.apps.addRunningApps (this.chameleonicBgColour);
			}
		}
		catch (Exception ex)